Challenge submission for Front-end position#210
Open
vietantran1215 wants to merge 1 commit into99techteam:mainfrom
Open
Challenge submission for Front-end position#210vietantran1215 wants to merge 1 commit into99techteam:mainfrom
vietantran1215 wants to merge 1 commit into99techteam:mainfrom
Conversation
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
This PR includes solutions for three coding challenges: a summation function with multiple implementations, a currency swap form with validation, and a React component refactor.
Problem 1: Sum to N - Multiple Implementations
Implemented three approaches to calculate the sum from 1 to n:
Recursive Approach (
sum_to_n_a)Iterative Approach (
sum_to_n_b)Mathematical Formula Approach (
sum_to_n_c)n * (n + 1) / 2All implementations include proper edge case handling for negative numbers and boundary conditions.
Problem 2: Currency Swap Form
Built a currency swap interface with the following features:
Features Implemented
Bootstrap UI Integration
Currency Selection
https://interview.switcheo.com/prices.json)Real-time Calculations
(inputAmount × inputPrice) / outputPriceForm Validation
User Experience
Technical Details
Problem 3: React Component Refactoring
Refactored a React wallet balance component to address inefficiencies and anti-patterns.
Issues Fixed
Critical Bugs
lhsPriority→balancePriorityType Safety Improvements
anytype with proper string typingblockchainproperty toWalletBalanceinterfaceFormattedWalletBalancePerformance Optimizations
pricesdependency fromsortedBalancesuseMemoformattedBalancesto prevent unnecessary recalculationsReact Best Practices
|| 0)Code Quality
getPriorityfunction with proper type annotationsRefactored Code Structure
Testing
Files Changed
src/problem1/index.js- Three sum_to_n implementationssrc/problem2/index.html- Swap form UI with Bootstrapsrc/problem2/script.js- Form logic, validation, and API integrationsrc/problem2/style.css- Custom styling with neutral themesrc/problem3/Refactor.tsx- Refactored React componentsrc/problem3/README.md- Documentation of issues and fixesNotes