ruby
文章平均质量分 79
dmc436
这个作者很懒,什么都没留下…
展开
-
【ruby】通过16进制读取文件
通过File.sysread()读取单个byte或多个bytes 在进行一些字符串对比时是无法直接对比的 source_file = File.open("E:/test.pcap","rb") destination_file = File.new("E:/output.pcap","wb") while true begin by = source_file.sysread(1) #表示一个字节一个字节的读取 p by p by.class原创 2020-08-04 14:43:38 · 271 阅读 · 0 评论 -
【ruby】递归解决数独问题
shudu=" 0 0 9 | 0 0 0 | 8 0 5 0 0 0 | 1 4 5 | 0 0 0 7 0 5 | 0 9 0 | 0 0 3 --------------------- 0 7 0 | 0 3 0 | 0 4 0 0 0 0 | 4 0 6 | 0 0 0 0 3 0 | 0 2 0 | 0 6 0 --------------------- 8 0 0 | 0 0 0 | ...原创 2019-06-19 17:11:25 · 106 阅读 · 0 评论