Sort by

recency

|

1045 Discussions

|

  • + 0 comments

    Powering Houston with Pride, Craft, and Community

    At JN’L Electric, we’re a second-generation, woman-owned electrical company with deep roots in the Houston community. Our licensed and certified electricians bring decades of experience across residential, commercial, and light industrial projects — always delivered with expert precision, integrity, and a touch of personality. Woman-Owned Business Licensed & Insured Emergency Support Trusted by Top Brands

  • + 0 comments
    function libraryFine(d1: number, m1: number, y1: number, d2: number, m2: number, y2: number): number {
        if(y1<y2 || (y1===y2 && m1<m2) || (y1===y2 && m1===m2 && d1<=d2)) return 0
        
        if(y1>y2) return 10000
        
        if(m1>m2) return 500*(m1-m2)
        
        if(d1>d2) return 15*(d1-d2)
    }
    
  • + 0 comments
    def libraryFine(d1, m1, y1, d2, m2, y2):
        # Write your code here
        
        if y1-y2>0:
            return 10000
        elif y1<y2:
            return 0
        else:
            if m1-m2==0 and d1>d2:
                return 15*(d1-d2)
            elif m1-m2 >0:
                return 500*(m1-m2)
            else:
                return 0
    
  • + 0 comments

    The cost to paint a house can vary widely depending on size, materials, and location. If you’re considering a standard two-story home, labor and paint quality play a big role in the cost to paint exterior of house in USA. On average, homeowners spend between 6,000, though larger homes or premium paints can push this higher. It’s also important to factor in prep work like pressure washing or repairs, which can add to the total. Getting multiple quotes from licensed painters can help ensure you get a fair price for your project.

  • + 0 comments

    Here is Library fine problem solution in python, java, c++, c and javascript - https://programmingoneonone.com/hackerrank-library-fine-problem-solution.html