This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fn main() { | |
| println!("{}", how_many_in_common("january february march")); | |
| } | |
| fn how_many_in_common(input: &str) -> u32 { | |
| let words = input.split(" "); | |
| let mut combined = 0x3ffffff; | |
| for word in words { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Native Instruments software uses PORT 5562 ON TCP (NTKDaemon) | |
| #Run CMD as Administrador and write: | |
| netstat -ano | findstr :5563 | |
| taskkill /PID <PID> /F |