20240725 Finished
This commit is contained in:
		@@ -184,3 +184,4 @@ mod p502_ipo;
 | 
				
			|||||||
mod p373_find_k_pairs_with_smallest_sums;
 | 
					mod p373_find_k_pairs_with_smallest_sums;
 | 
				
			||||||
mod p295_find_median_from_data_stream;
 | 
					mod p295_find_median_from_data_stream;
 | 
				
			||||||
mod p67_add_binary;
 | 
					mod p67_add_binary;
 | 
				
			||||||
 | 
					mod p190_reverse_bits;
 | 
				
			||||||
							
								
								
									
										24
									
								
								src/problem/p190_reverse_bits.rs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								src/problem/p190_reverse_bits.rs
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,24 @@
 | 
				
			|||||||
 | 
					/**
 | 
				
			||||||
 | 
					 * [190] Reverse Bits
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					pub struct Solution {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// submission codes start here
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					impl Solution {
 | 
				
			||||||
 | 
					    pub fn reverse_bits(x: u32) -> u32 {
 | 
				
			||||||
 | 
					        x.reverse_bits() 
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// submission codes end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#[cfg(test)]
 | 
				
			||||||
 | 
					mod tests {
 | 
				
			||||||
 | 
					    use super::*;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    #[test]
 | 
				
			||||||
 | 
					    fn test_190() {
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
		Reference in New Issue
	
	Block a user