From ab3eb0c57c96a194bd238ea9703d95da85eb4f60 Mon Sep 17 00:00:00 2001 From: hayzamjs Date: Fri, 24 May 2024 22:31:07 +0530 Subject: [PATCH] docs: more details --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 99a2a79..ea6b413 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Using the last 64 bits of the provided 128-bit CID, you are required to implemen * Extract the last 64 bits of the CID input. * Generate the primary MAC address by converting the 64-bit integer to a 48-bit MAC address. * Use bitwise operations to generate the initial MAC address ensuring the multicast bit is cleared. (The multicast bit is the least significant bit of the first byte.) -* Implement an algorithm to increment the MAC address, carefully managing overflow from the least significant byte upwards. +* Implement an algorithm to increment the MAC address (for the second one), carefully managing overflow from the least significant byte upwards. ### Integration @@ -43,6 +43,11 @@ Using the last 64 bits of the provided 128-bit CID, you are required to implemen You can submit your solution as a ZIP file containing the project files (mail it to [hayzam@difuse.io](mailto:hayzam@difuse.io)). Include a README file with instructions on how to run the application and any additional information you consider relevant. + +** OR ** + +You can host your solution and share the link with us. (Please ensure the link is accessible and the application is running.) + ## Evaluation Criteria * Code quality and organization.