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
// SPDX-License-Identifier: MIT | |
pragma solidity 0.8.13; | |
import "./Car.sol"; | |
// The strategy used to reach #5 (1486.41 ELO) in 0xMonaco | |
// https://twitter.com/0xBA5ED | |
// This contract contains bugs and has ineffecient gas usage, do not use it in production | |
contract BA5ED is Car { | |
uint256 internal constant PANIC_MODE_MOVES = 5; |