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
| <html> | |
| <head> | |
| <script> | |
| var flip = function(ele){ | |
| ele.classList.toggle('flipped'); | |
| } | |
| var move = 10; | |
| var moveBoss = function(){ | |
| ele = document.querySelector('#boss'); |
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
| describe("NiceTrie", function() { | |
| it("can be initialized", function() { | |
| var t = new Trie(); | |
| }); | |
| describe("with a trie", function(){ | |
| var t; | |
| beforeEach(function() { | |
| t = new Trie(); | |
| }); |
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
| checking build system type... x86_64-pc-linux-gnu | |
| checking host system type... x86_64-pc-linux-gnu | |
| checking for python3.7... no | |
| checking for python3... python3 | |
| checking for --enable-universalsdk... no | |
| checking for --with-universal-archs... no | |
| checking MACHDEP... checking for --without-gcc... no | |
| checking for --with-icc... no | |
| checking for gcc... gcc | |
| checking whether the C compiler works... yes |
OlderNewer