refactor: remove unneded functions
This commit is contained in:
parent
24611a2357
commit
c416547067
3 changed files with 3 additions and 21 deletions
|
|
@ -24,7 +24,7 @@ pub fn get_coefficients(num: u128) -> Vec<u8> {
|
|||
for shift in 0..128 {
|
||||
//println!("{:?}", ((num >> shift) & 1));
|
||||
if ((num >> shift) & 1) == 1 {
|
||||
println!("Shift success");
|
||||
dbg!("Shift success");
|
||||
powers.push(shift);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue