This file contains 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
/** @class representing a binary heap node */ | |
class Node { | |
/** | |
* @author: xenowits | |
* @param {string} id The accountID of the user | |
* @param {number} wt The associated weight (equal to noOfEntries) | |
* @param {number} totalWt Total weight of the subheap headed by current Node | |
*/ | |
constructor(id, wt, totalWt) { | |
this.accountID = id; |
This file contains 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
// [rust] run with `rustc main.rs && ./main` | |
fn main() { | |
for n in 4..20 { | |
let t = (2*n) as f64 / 3 as f64; | |
println!("{} of {}", t.ceil(), n); | |
} | |
} | |
// [javascript] run with `node main.js` | |
const fn = () => { |
This file contains 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
{ | |
"name": "Catalysis Abstraction Layer DVN", | |
"website": "https://catalysis.network/", | |
"description": "Catalysis is the fastest, most cost-effective way to launch and scale your AVS with shared security, cross-ecosystem interoperability and seamless security management. Catalysis simplifies the way AVSs leverage shared security, providing a scalable, resilient and composable foundation across multiple restaking ecosystems. By combining modularity and developer-friendly tooling, Catalysis ensures faster deployment, reduced costs and robust infrastructure for the next generation of decentralized applications.", | |
"logo": "https://catalysis.network/logo.png" | |
} |